From a3ba3c86d99d1ca61df497b9e53f3eb858c92be7 Mon Sep 17 00:00:00 2001 From: robertl Date: Fri, 7 Jul 2006 18:15:31 +0000 Subject: [PATCH] Tweak panel reader to look at only the frame containing the turn-by-turns to avoid entity encoding problem of ™ symbol that was recently introduced. git-svn-id: http://gpsbabel.googlecode.com/svn/trunk@2217 f51c46e8-681c-474f-0cfe-069cfd0219fb --- gpsbabel/google.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gpsbabel/google.c b/gpsbabel/google.c index ff883dcc7..a3e8a108f 100644 --- a/gpsbabel/google.c +++ b/gpsbabel/google.c @@ -329,9 +329,9 @@ google_read(void) } if ( panel ) { panel += 8; - end = strstr( panel, ">'," ); + end = strstr( panel, "/div><'," ); if ( end ) { - *(end+1) = '\0'; + strcpy(end,""); end = panel; while ( (end = strstr( end, "\\\"" ))) { memmove( end, end+1, strlen(end)+1 ); -- 2.30.2